html {
    height: 100%;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #880000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .left {
    position: fixed; /* Makes it stick to the side */
    top: 50%;
    left: 10%;
    transform: translateY(-50%); /* Centers vertically */
    width: 400px; /* Adjust width as needed */
    height: 600px; /* Full height */
    background-color: #ffffff; /* Dark background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);  
    border-radius: 10px;
  }
  
  .mt-5 {
    margin-top: 5rem
  }
  
  .mt-3 {
    margin-top: 3rem
  }
  
  .href {
    color: #0a0a0a;
  }
  
  .href:hover {
    color: #222222;
  }
  
  .centered {
    padding: 20px;
    margin-bottom: 75px;
    text-align: center;
  }
  
  .content .bottoma {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
  }
  
  h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    color: #474d5a;
    padding: 0;
  }
  h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    text-align: center;
    color: #474d5a;
    margin: 0;
    padding: 0;
  }
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  button {
    background-color: #f9f9f9;
    border: none;
    color: #0a0a0a;
    padding: 10px 32px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    font-size: 1.25rem;
    margin: 0 auto;
    border-radius: 10px;
    cursor: pointer;
    border: 0.01em solid #474d5a;
    border-radius: 10px;
    transition: 0.25s;
  }
  button:hover {
    background-color: #474d5a;
    color: #f9f9f9;
  }
  button:hover .azure-icon {
    fill: #f9f9f9;
  }
  
  .azure-icon {
    width: 23px;
    height: 23px;
    margin: auto;
    display: inline-block;
    position: relative;
    top: 0.2em;
    transition: 0.25s;
  }
  
  .SJTS {
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    margin-top: 20px;
  }
  
  .logo {
    position: absolute;
    bottom: 30px; /* Adjusts for the margin at the bottom */
    left: 50%;
    transform: translateX(-50%); /* Only adjust horizontally */
  }
  
  @media (max-width: 768px) {
    .left {
      position: relative;
      top: 0;
      left: 0;
      transform: none; /* No vertical centering */
      width: 100vw; /* Full viewport width */
      height: 100vh; /* Full viewport height */
      border-radius: 0; /* Remove rounded corners */
      box-shadow: none; /* Optional: Remove shadow for fullscreen look */
    }
  }